home *** CD-ROM | disk | FTP | other *** search
- overSound = new Sound(this);
- overSound.attachSound("btnOver");
- loadBar_mc._width = 0;
- name_txt._y = -40;
- hit2_mc._y = -40;
- hit2_mc.onRollOver = function()
- {
- this.colorTo(16777215,0,"easeOutSine");
- overSound.start();
- };
- hit2_mc.onRollOut = function()
- {
- this.colorTo(null,0.4,"easeOutSine");
- };
- hit2_mc.onRelease = function()
- {
- image_num = _root.downloadCount_var;
- var _loc2_ = _root.content_xml.firstChild.childNodes[2].childNodes[_root.secCount_var].childNodes[image_num].attributes.hiRes;
- getURL(_loc2_,"");
- };
-